home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
Apps
/
ScreenSavers
/
darken
/
LoginHook.proto
< prev
next >
Wrap
Text File
|
1992-12-20
|
286b
|
18 lines
#!/bin/sh
# LoginHook - executed before loginwindow processes a login
# Brighten the video display
BIN=/usr/local/etc
F=${BIN}/VidLev.pid
if /bin/test -r $F
then
P=`/bin/cat $F`
/bin/ps $P | /bin/grep VidLev > /dev/null 2>&1
if /bin/test $? -eq 0
then
/bin/kill -HUP $P
fi
fi